home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / libcs / ffilecopy.c < prev    next >
C/C++ Source or Header  |  1995-06-12  |  3KB  |  82 lines

  1. /*
  2.  * Copyright (c) 1990 Carnegie Mellon University
  3.  * All Rights Reserved.
  4.  * 
  5.  * Permission to use, copy, modify and distribute this software and its
  6.  * documentation is hereby granted, provided that both the copyright
  7.  * notice and this permission notice appear in all copies of the
  8.  * software, derivative works or modified versions, and any portions
  9.  * thereof, and that both notices appear in supporting documentation.
  10.  *
  11.  * THE SOFTWARE IS PROVIDED "AS IS" AND CARNEGIE MELLON UNIVERSITY
  12.  * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
  13.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.  IN NO EVENT
  14.  * SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR ANY SPECIAL, DIRECT,
  15.  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
  16.  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
  17.  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  18.  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  19.  *
  20.  * Users of this software agree to return to Carnegie Mellon any
  21.  * improvements or extensions that they make and grant Carnegie the
  22.  * rights to redistribute these changes.
  23.  *
  24.  * Export of this software is permitted only after complying with the
  25.  * regulations of the U.S. Deptartment of Commerce relating to the
  26.  * Export of Technical Data.
  27.  */
  28. /*  ffilecopy  --  very fast buffered file copy
  29.  *
  30.  *  Usage:  i = ffilecopy (here,there)
  31.  *    int i;
  32.  *    FILE *here, *there;
  33.  *
  34.  *  Ffilecopy is a very fast routine to copy the rest of a buffered
  35.  *  input file to a buffered output file.  Here and there are open
  36.  *  buffers for reading and writing (respectively); ffilecopy
  37.  *  performs a file-copy faster than you should expect to do it
  38.  *  yourself.  Ffilecopy returns 0 if everything was OK; EOF if
  39.  *  there was any error.  Normally, the input file will be left in
  40.  *  EOF state (feof(here) will return TRUE), and the output file will be
  41.  *  flushed (i.e. all data on the file rather in the core buffer).
  42.  *  It is not necessary to flush the output file before ffilecopy.
  43.  *
  44.  *  HISTORY
  45.  * $Log:    ffilecopy.c,v $
  46.  * Revision 1.2  90/12/11  17:52:41  mja
  47.  *     Add copyright/disclaimer for distribution.
  48.  * 
  49.  * 20-Nov-79  Steven Shafer (sas) at Carnegie-Mellon University
  50.  *    Created for VAX.
  51.  *
  52.  */
  53.  
  54. #include <stdio.h>
  55. int filecopy();
  56.  
  57. int ffilecopy (here,there)
  58. FILE *here, *there;
  59. {
  60.     register int i, herefile, therefile;
  61.  
  62.     herefile = fileno(here);
  63.     therefile = fileno(there);
  64.  
  65.     if (fflush (there) == EOF)        /* flush pending output */
  66.         return (EOF);
  67.  
  68.     if ((here->_cnt) > 0) {            /* flush buffered input */
  69.         i = write (therefile, here->_ptr, here->_cnt);
  70.         if (i != here->_cnt)  return (EOF);
  71.         here->_ptr = here->_base;
  72.         here->_cnt = 0;
  73.     }
  74.  
  75.     i = filecopy (herefile, therefile);    /* fast file copy */
  76.     if (i < 0)  return (EOF);
  77.  
  78.     (here->_flag) |= _IOEOF;        /* indicate EOF */
  79.  
  80.     return (0);
  81. }
  82.